encoding/binary.coder.buf (field)

16 uses

	encoding/binary (current package)
		binary.go#L326: 	d := &decoder{order: order, buf: make([]byte, size)}
		binary.go#L327: 	if _, err := io.ReadFull(r, d.buf); err != nil {
		binary.go#L457: 	e := &encoder{order: order, buf: buf}
		binary.go#L532: 	buf    []byte
		binary.go#L540: 	x := d.buf[d.offset]
		binary.go#L547: 		e.buf[e.offset] = 1
		binary.go#L549: 		e.buf[e.offset] = 0
		binary.go#L555: 	x := d.buf[d.offset]
		binary.go#L561: 	e.buf[e.offset] = x
		binary.go#L566: 	x := d.order.Uint16(d.buf[d.offset : d.offset+2])
		binary.go#L572: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
		binary.go#L577: 	x := d.order.Uint32(d.buf[d.offset : d.offset+4])
		binary.go#L583: 	e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
		binary.go#L588: 	x := d.order.Uint64(d.buf[d.offset : d.offset+8])
		binary.go#L594: 	e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
		binary.go#L764: 	zero := e.buf[e.offset : e.offset+n]